home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 855
- ClientLeft = 2490
- ClientTop = 1725
- ClientWidth = 2025
- ControlBox = 0 'False
- Icon = "credits.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 855
- ScaleWidth = 2025
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.Timer Timer1
- Enabled = 0 'False
- Interval = 50
- Left = 840
- Top = 6840
- End
- Begin VB.Label Label6
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Theresa Dixson"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 255
- Left = 0
- TabIndex = 6
- Top = 5400
- Width = 2055
- End
- Begin VB.Label Label5
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Grahics Design"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800000&
- Height = 255
- Left = 0
- TabIndex = 5
- Top = 5160
- Width = 2055
- End
- Begin VB.Label Label3
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Software Design"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800000&
- Height = 255
- Left = 0
- TabIndex = 4
- Top = 3720
- Width = 2055
- End
- Begin VB.Label Label2
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "In Random Order"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 255
- Left = 0
- TabIndex = 3
- Top = 2880
- Width = 2055
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "The Creators"
- BeginProperty Font
- Name = "Verdana"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 255
- Left = -120
- TabIndex = 2
- Top = 1800
- Width = 2295
- End
- Begin VB.Label Label4
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Emmett Dixson"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 255
- Left = 0
- TabIndex = 1
- Top = 3960
- Width = 2055
- End
- Begin VB.Label Label7
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Click To Close"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 375
- Left = 0
- TabIndex = 0
- Top = 6360
- Width = 2175
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Timer1.Enabled = True
- End Sub
- Private Sub timer1_Timer()
- Label1.Top = Label1.Top - 50
- Label2.Top = Label2.Top - 50
- Label3.Top = Label3.Top - 50
- Label4.Top = Label4.Top - 50
- Label5.Top = Label5.Top - 50
- Label6.Top = Label6.Top - 50
- Label7.Top = Label7.Top - 50
- If Label7.Top = -100 Then Timer1.Enabled = False
- End Sub
- Private Sub Form_Click()
- Unload Me
- End Sub
-